home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJLSR106.ARJ / STRXFRM.C < prev    next >
C/C++ Source or Header  |  1992-03-02  |  2KB  |  67 lines

  1. /* This is file STRXFRM.C */
  2. /* This file may have been modified by DJ Delorie (Jan 1991).  If so,
  3. ** these modifications are Coyright (C) 1991 DJ Delorie, 24 Kirsten Ave,
  4. ** Rochester NH, 03867-2954, USA.
  5. */
  6.  
  7. /*-
  8.  * Copyright (c) 1990 The Regents of the University of California.
  9.  * All rights reserved.
  10.  *
  11.  * This code is derived from software contributed to Berkeley by
  12.  * Chris Torek.
  13.  *
  14.  * Redistribution and use in source and binary forms are permitted
  15.  * provided that: (1) source distributions retain this entire copyright
  16.  * notice and comment, and (2) distributions including binaries display
  17.  * the following acknowledgement:  ``This product includes software
  18.  * developed by the University of California, Berkeley and its contributors''
  19.  * in the documentation or other materials provided with the distribution
  20.  * and in all advertising materials mentioning features or use of this
  21.  * software. Neither the name of the University nor the names of its
  22.  * contributors may be used to endorse or promote products derived
  23.  * from this software without specific prior written permission.
  24.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  25.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  26.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  27.  */
  28.  
  29. #if defined(LIBC_SCCS) && !defined(lint)
  30. static char sccsid[] = "@(#)strxfrm.c    5.1 (Berkeley) 5/17/90";
  31. #endif /* LIBC_SCCS and not lint */
  32.  
  33. #include <sys/stdc.h>
  34. #include <string.h>
  35.  
  36. /*
  37.  * Transform src, storing the result in dst, such that
  38.  * strcmp() on transformed strings returns what strcoll()
  39.  * on the original untransformed strings would return.
  40.  */
  41. size_t
  42. strxfrm(dst, src, n)
  43.     register char *dst;
  44.     register const char *src;
  45.     register size_t n;
  46. {
  47.     register size_t r = 0;
  48.     register int c;
  49.  
  50.     /*
  51.      * Since locales are unimplemented, this is just a copy.
  52.      */
  53.     if (n != 0) {
  54.         while ((c = *src++) != 0) {
  55.             r++;
  56.             if (--n == 0) {
  57.                 while (*src++ != 0)
  58.                     r++;
  59.                 break;
  60.             }
  61.             *dst++ = c;
  62.         }
  63.         *dst = 0;
  64.     }
  65.     return (r);
  66. }
  67.